
[dbo].[dt_removefromsourcecontrol]
create procedure dbo.dt_removefromsourcecontrol
as
set nocount on
declare @iPropertyObjectId int
select @iPropertyObjectId = (select objectid from dbo.dtproperties where property = 'VCSProjectID')
exec dbo.dt_droppropertiesbyid @iPropertyObjectId, null
if @@error <> 0 and @@error <> -1 return 1
return 0
GO
GRANT EXECUTE ON [dbo].[dt_removefromsourcecontrol] TO [public]
GO